home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / _ClipPutFile.au3 < prev    next >
Text File  |  2007-09-08  |  233b  |  8 lines

  1. #include "misc.au3"
  2. Local $fTest
  3. $fTest = _ClipPutFile(@ScriptFullPath)
  4. If Not $fTest Then
  5.     MsgBox(0,"_ClipPutFile() call Failed","@error = " & @error)
  6. Else
  7.     MsgBox(0,"_ClipPutFile()","Content of Clipboard:" & ClipGet())
  8. EndIf